home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / events / EffectEvent.as < prev    next >
Text File  |  2009-02-12  |  880b  |  33 lines

  1. package mx.events
  2. {
  3.    import flash.events.Event;
  4.    import mx.core.mx_internal;
  5.    import mx.effects.IEffectInstance;
  6.    
  7.    use namespace mx_internal;
  8.    
  9.    public class EffectEvent extends Event
  10.    {
  11.       
  12.       public static const EFFECT_START:String = "effectStart";
  13.       
  14.       mx_internal static const VERSION:String = "3.0.0.0";
  15.       
  16.       public static const EFFECT_END:String = "effectEnd";
  17.        
  18.       
  19.       public var effectInstance:IEffectInstance;
  20.       
  21.       public function EffectEvent(param1:String, param2:Boolean = false, param3:Boolean = false, param4:IEffectInstance = null)
  22.       {
  23.          super(param1,param2,param3);
  24.          this.effectInstance = param4;
  25.       }
  26.       
  27.       override public function clone() : Event
  28.       {
  29.          return new EffectEvent(type,bubbles,cancelable,effectInstance);
  30.       }
  31.    }
  32. }
  33.